home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE21 / HTMLVIEW / HTMLVIEW.ZIP / DEMOSRC.ZIP / DEMOUNIT.DFM / DEMOUNIT.txt
Encoding:
Text File  |  1996-11-24  |  4.2 KB  |  195 lines

  1. object Form1: TForm1
  2.   Left = 92
  3.   Top = 66
  4.   Width = 631
  5.   Height = 459
  6.   Caption = 'HTML Demo, Version 4.03 for Delphi 1'
  7.   Font.Color = clWindowText
  8.   Font.Height = -13
  9.   Font.Name = 'System'
  10.   Font.Style = []
  11.   Menu = MainMenu
  12.   PixelsPerInch = 96
  13.   Position = poDefaultPosOnly
  14.   OnCreate = FormCreate
  15.   OnShow = FormShow
  16.   TextHeight = 16
  17.   object Panel1: TPanel
  18.     Left = 0
  19.     Top = 394
  20.     Width = 623
  21.     Height = 19
  22.     Align = alBottom
  23.     Alignment = taLeftJustify
  24.     BevelInner = bvLowered
  25.     BevelOuter = bvNone
  26.     TabOrder = 0
  27.   end
  28.   object Panel2: TPanel
  29.     Left = 0
  30.     Top = 0
  31.     Width = 623
  32.     Height = 33
  33.     Align = alTop
  34.     BevelOuter = bvNone
  35.     TabOrder = 1
  36.     object Edit1: TEdit
  37.       Left = 190
  38.       Top = 4
  39.       Width = 337
  40.       Height = 24
  41.       TabStop = False
  42.       ReadOnly = True
  43.       TabOrder = 3
  44.     end
  45.     object Reload: TButton
  46.       Left = 10
  47.       Top = 4
  48.       Width = 59
  49.       Height = 24
  50.       Caption = '&Reload'
  51.       Enabled = False
  52.       TabOrder = 0
  53.       OnClick = ReloadClick
  54.     end
  55.     object BackButton: TButton
  56.       Left = 69
  57.       Top = 4
  58.       Width = 59
  59.       Height = 24
  60.       Caption = '&Back'
  61.       Enabled = False
  62.       TabOrder = 1
  63.       OnClick = FwdBackClick
  64.     end
  65.     object FwdButton: TButton
  66.       Left = 128
  67.       Top = 4
  68.       Width = 59
  69.       Height = 24
  70.       Caption = '&Forward'
  71.       Enabled = False
  72.       TabOrder = 2
  73.       OnClick = FwdBackClick
  74.     end
  75.   end
  76.   object Panel3: TPanel
  77.     Left = 0
  78.     Top = 33
  79.     Width = 623
  80.     Height = 361
  81.     Align = alClient
  82.     BevelInner = bvLowered
  83.     BevelOuter = bvNone
  84.     Caption = 'Panel3'
  85.     TabOrder = 2
  86.     object Viewer: THTMLViewer
  87.       Left = 1
  88.       Top = 1
  89.       Width = 621
  90.       Height = 359
  91.       Cursor = crIBeam
  92.       OnHotSpotCovered = HotSpotChange
  93.       OnHotSpotClick = HotSpotClick
  94.       OnFormSubmit = SubmitEvent
  95.       OnHistoryChange = HistoryChange
  96.       ViewImages = True
  97.       TabStop = True
  98.       TabOrder = 0
  99.       Align = alClient
  100.       BorderStyle = htFocused
  101.       HistoryMaxCount = 0
  102.       DefFontName = 'Times New Roman'
  103.       DefPreFontName = 'Courier New'
  104.       OnProcessing = ProcessingHandler
  105.       NoSelect = False
  106.     end
  107.   end
  108.   object OpenDialog: TOpenDialog
  109.     DefaultExt = 'htm'
  110.     Filter = 'html files|*.htm;*.html|all files|*.*'
  111.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist]
  112.     Left = 393
  113.     Top = 2
  114.   end
  115.   object MainMenu: TMainMenu
  116.     Left = 355
  117.     Top = 4
  118.     object File1: TMenuItem
  119.       Caption = '&File'
  120.       object Open: TMenuItem
  121.         Caption = '&Open'
  122.         OnClick = OpenFileClick
  123.         ShortCutText = 'F3'
  124.       end
  125.       object Print1: TMenuItem
  126.         Caption = '&Print...'
  127.         Enabled = False
  128.         OnClick = Print1Click
  129.       end
  130.       object N1: TMenuItem
  131.         Caption = '-'
  132.       end
  133.       object Exit: TMenuItem
  134.         Caption = 'E&xit'
  135.         OnClick = ExitClick
  136.       end
  137.     end
  138.     object Edit2: TMenuItem
  139.       Caption = '&Edit'
  140.       OnClick = Edit2Click
  141.       object Find1: TMenuItem
  142.         Caption = '&Find'
  143.         Enabled = False
  144.         OnClick = Find1Click
  145.       end
  146.       object CopyItem: TMenuItem
  147.         Caption = '&Copy'
  148.         OnClick = CopyItemClick
  149.       end
  150.       object N2: TMenuItem
  151.         Caption = '-'
  152.       end
  153.       object SelectAllItem: TMenuItem
  154.         Caption = 'Select &All'
  155.         Enabled = False
  156.         OnClick = SelectAllItemClick
  157.       end
  158.     end
  159.     object options1: TMenuItem
  160.       Caption = '&Options'
  161.       object ShowImages: TMenuItem
  162.         Caption = '&Show images'
  163.         OnClick = ShowImagesClick
  164.       end
  165.       object Fonts: TMenuItem
  166.         Caption = 'Default &Font/Colors...'
  167.         OnClick = FontColorsClick
  168.       end
  169.     end
  170.     object HistoryMenuItem: TMenuItem
  171.       Caption = '&History'
  172.       Visible = False
  173.     end
  174.     object About1: TMenuItem
  175.       Caption = '&About'
  176.       OnClick = About1Click
  177.     end
  178.   end
  179.   object PrintDialog: TPrintDialog
  180.     FromPage = 1
  181.     MinPage = 1
  182.     MaxPage = 9999
  183.     Options = [poPageNums]
  184.     ToPage = 1
  185.     Left = 434
  186.     Top = 1
  187.   end
  188.   object FindDialog: TFindDialog
  189.     Options = [frDown, frHideWholeWord, frHideUpDown, frDisableUpDown, frDisableWholeWord]
  190.     OnFind = FindDialogFind
  191.     Left = 313
  192.     Top = 65535
  193.   end
  194. end
  195.